home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / var / lib / dpkg / info / procps.prerm < prev    next >
Encoding:
Text File  |  2009-03-18  |  408 b   |  25 lines

  1. #!/bin/sh
  2. set -e
  3.  
  4. case "$1" in
  5.   remove|deconfigure)
  6.     update-alternatives --remove w /usr/bin/w.procps
  7.     ;;
  8.   upgrade|failed-upgrade)
  9.     ;;
  10. esac
  11.  
  12. # Automatically added by dh_installinit
  13. if [ -x "/etc/init.d/procps" ]; then
  14.     if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
  15.         invoke-rc.d procps stop || exit $?
  16.     else
  17.         /etc/init.d/procps stop || exit $?
  18.     fi
  19. fi
  20. # End automatically added section
  21.  
  22.  
  23. exit 0
  24.  
  25.